#contact-bar {
    opacity: 0;
    visibility: hidden;
}

/* video section */

#videosection {
    position: relative;
    background-color: #ddd;
    font-size: 0;
}

#scroll_down {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 90%;
    text-align: center;
    color: white;
    font-size: 20px;
    z-index: 2;
    border: none;
    background-color: transparent;
    display: none;
}

#scroll_down:hover {
    cursor: pointer;
}

#scroll_down p {
    margin: 0;
}

#scroll_down img {
    width: 50px;
}

#BgVideo {
    width: 100%;
    font-size: 0;
    opacity: 0;
    transition: opacity 1s;
}

#logoinmiddle{
    width: 50%;
    position: absolute;
    margin: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* feature section */

#feature_section {
    padding: 20px 0;
}

#feature_section h1 {
    font-size: 35px;
}

#feature_section p {
    font-weight: normal;
    text-align: justify;
}

#feature_section .container {
    width: 80%;
    margin: auto;
}

.features {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 15px;
}

.feature {
    width: 30%;
}

.feature img {
    width: 100%;
    border-radius: 10px;
    transition: transform .2s;
}

.feature img:hover {
    transform: scale(1.1);
}

/* slideshow */

#slideshow {
    width: 100%;
    height: 100%;
}

.swiper {
    background-color: gray;
    height: 100%;
}

.swiper-slide {
    background-position: center center;
    background-size: cover;
}

.swiper .first {background-image: url(../img/baobab1.jpg);}
.swiper .second {background-image: url(../img/baobab2.jpg);}
.swiper .third {background-image: url(../img/baobab3.jpg);}
.swiper .forth {background-image: url(../img/baobab5.jpg);}

.swiper-slide .text {
    width: 80%;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 2px 2px 4px #000;
}

.swiper-slide h1 {
    font-size: 50px;
}

.swiper-slide p {
    text-align: left;
    font-size: 30px;
}

.swiper .forth p {
    font-size: 40px;
}

:root {
    --swiper-navigation-color: #fff;
    --swiper-theme-color: #fff !important;
}

/* team section */

#team_section {
    text-align: center;
    padding-bottom: 50px;
}

#team_section h1 {
    font-size: 45px;
}

#team_section address {
    word-wrap: break-word;
}

#team_section ul {
    width: 80%;
    margin: auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
}

#team_section li {
    width: 33.3%;
    vertical-align: top;
    padding: 20px;
    box-sizing: border-box;
}

#team_section img {
    width: 100%;
    max-width: 200px;
    border-radius: 50%;
    transition: transform 0.2s, box-shadow 0.2s;
}

#team_section img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #888;
}

@media screen and (max-width: 1200px) {

    .feature {
        width: 47.5%;
    }

    .swiper .third p {
        font-size: 25px;
    }

    #team_section ul li {
        width: 50%;
    }
}

@media screen and (max-width: 900px) {

    #header {
        opacity: 0;
        visibility: hidden;
    }
    
    #scroll_down {
        font-size: 16px;
    }

    #scroll_down img {
        width: 25px;
    }

    .swiper-slide p {
        font-size: 20px;
    }

    .swiper-slide h1 {
        font-size: 40px;
    }

    .swiper .third p {
        font-size: 20px;
    }

    .swiper .forth p {
        font-size: 30px;
    }

    #team_section ul li {
        width: 100%;
    }
}

@media screen and (max-width: 700px) {

    .feature {
        width: 100%;
    }   
}

@media screen and (max-width: 500px) {
    .swiper p {
        font-size: 16px;
    }
}